ci(macos): install julia dependency (#268)
authordundargoc <33953936+dundargoc@users.noreply.github.com>
Wed, 10 Jul 2024 11:48:32 +0000 (13:48 +0200)
committerGitHub <noreply@github.com>
Wed, 10 Jul 2024 11:48:32 +0000 (07:48 -0400)
Otherwise the job fails with the error message

"/bin/sh: julia: command not found"

.github/workflows/make.yml

index 1ee2299cfa7c2b7a1a0c2246e86d84b72fd2afee..acc975d302fe103fe0f58f240bcc8e8bdf15c7b9 100644 (file)
@@ -18,9 +18,9 @@ jobs:
     steps:
     - uses: actions/checkout@v2
     # TODO: update makefile to check MANIFEST
-    - name: Install dependencies (MacOS)
-    #   if: matrix.config.os == 'macos-latest'
-    #   run: brew install ruby findutils
+    - name: Install dependencies (MacOS)
+      if: runner.os == 'macOS'
+      run: brew install julia
 
     - name: Check MANIFEST
       if: matrix.config.os == 'ubuntu-latest'